home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 3 / BBS in a box - Trilogy III.iso / Files / Prog / U-Z / ViewIt™ 2.2 Shareware / Projects / THINK C 6.0 Demos / MinimumLC.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-07-08  |  293 b   |  15 lines  |  [TEXT/KAHL]

  1. /* Minimum LC Demonstration Program */
  2. /* ©FaceWare 1991-93.  All Rights Reserved. */
  3.  
  4. #include <string.h>
  5. #include "FaceStorLC.h"
  6. extern struct FaceRec fRec;
  7.  
  8. void main()
  9. {
  10.     strcpy(fRec.uName, "Minimum.Rsrc");
  11.     FaceIt(0L,DoInit,0L,0L,0L,0L);
  12.     for (;;) {
  13.         FaceIt(0L,DoLoop,0L,0L,0L,0L);
  14.         }
  15. }